home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / shutdown-fx-20-c / Fade module ƒ / ◊ Fades ƒ / Four corner centered fade.c < prev    next >
C/C++ Source or Header  |  1994-07-11  |  3KB  |  95 lines

  1. /**********************************************************************\
  2.  
  3. File:        Four corner centered fade.c
  4.  
  5. Purpose:    Graphic effect to fade main window to solid pattern.
  6.             See comments below for more description.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #include "timing.h"
  26.  
  27. #define CorrectTime 6
  28. #define theWindowHeight (boundsRect.bottom-boundsRect.top)
  29. #define theWindowWidth (boundsRect.right-boundsRect.left)
  30.  
  31. pascal short main(Rect boundsRect, Pattern *thePattern);
  32.  
  33. /* Really, this only uses one region and one CopyBits per round.  Regions don't
  34.    have to be continuous.  On each axis, on each side of the center of the screen,
  35.    there are two parts of the region which move towards different corners. */
  36.    
  37. pascal short main(Rect boundsRect, Pattern *thePattern)
  38. {
  39.     RgnHandle    curregion;
  40.     int            cx,cy,lastx,lasty;
  41.     int            BlockSize, VBlockSize;
  42.     
  43.     cx = boundsRect.left + theWindowWidth / 2;
  44.     cy = boundsRect.top + theWindowHeight / 2;
  45.     BlockSize=theWindowWidth/50;
  46.     VBlockSize=theWindowHeight/50;
  47.  
  48.     curregion=NewRgn();
  49.     
  50.     lasty=lastx=0;
  51.     do
  52.     {
  53.         StartTiming();
  54.         SetEmptyRgn(curregion);
  55.         MoveTo(cx,cy);
  56.         OpenRgn();              /* much much faster than 8 regions/CopyBits */
  57.             LineTo(cx-lastx,boundsRect.top);
  58.             Line(-BlockSize,0);
  59.             LineTo(cx+lastx+BlockSize,boundsRect.bottom);
  60.             Line(-BlockSize,0);
  61.             LineTo(cx,cy);
  62.             
  63.             LineTo(cx+lastx,boundsRect.top);
  64.             Line(BlockSize,0);
  65.             LineTo(cx-lastx-BlockSize,boundsRect.bottom);
  66.             Line(BlockSize,0);
  67.             LineTo(cx,cy);
  68.             
  69.             LineTo(boundsRect.right,cy-lasty);
  70.             Line(0,-VBlockSize);
  71.             LineTo(boundsRect.left,cy+lasty+VBlockSize);
  72.             Line(0,-VBlockSize);
  73.             LineTo(cx,cy);
  74.             
  75.             LineTo(boundsRect.right,cy+lasty);
  76.             Line(0,VBlockSize);
  77.             LineTo(boundsRect.left,cy-lasty-VBlockSize);
  78.             Line(0,VBlockSize);
  79.             LineTo(cx,cy);
  80.         CloseRgn(curregion);
  81.  
  82.         FillRgn(curregion, *thePattern);
  83.         lastx+=BlockSize;
  84.         lasty+=VBlockSize;
  85.         TimeCorrection(CorrectTime);
  86.     }
  87.     while (lastx<cx-boundsRect.left);
  88.  
  89.     FillRect(&boundsRect, *thePattern);            /* in case we miss a few pixels */
  90.     
  91.     DisposeRgn(curregion);
  92.     
  93.     return 0;
  94. }
  95.